netsuite-js

SearchPreferences

declaration
SearchPreferences ->SearchPreferences

var SearchPreferences = module.exports = function SearchPreferences() {
  BaseObject.call(this);

bodyFieldsOnly

property
this.bodyFieldsOnly

@member {Boolean} Does not return associated fields if true. Defaults to true

this.bodyFieldsOnly = true;

pageSize

property
this.pageSize

@member {Number} Set to undefined to clear

this.pageSize = undefined;

returnSearchColumns

property
this.returnSearchColumns

@member {Boolean} Only return search columns. Defaults to true

this.returnSearchColumns = true;

};

util.inherits(SearchPreferences, BaseObject);

getAttributes

method
SearchPreferences.prototype.getAttributes()

@override

SearchPreferences.prototype.getAttributes = function() {
  var attrs = {
    'xsi:type': 'SearchPreferences'
  };

  return attrs;
};

getSOAPType

method
SearchPreferences.prototype.getSOAPType()

@override

SearchPreferences.prototype.getSOAPType = function() {
  return 'searchPreferences';
};